.header-wrap {
    width: 100%;
    height: 80px;
	background-color: #FFFFFF;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
	position: fixed;
    top: 0px;
    left: 0;
    z-index: 10;
	box-sizing: border-box;
    /* overflow-x: auto; */
}

.header-left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: #000000;
}

.left-title {
    margin-left: 10px;
}

.left-title>div:first-child {
    font-size: 18px;
}

.left-title>div:last-child {
    font-size: 12px;
    margin-top: 3px;
}

.header-right {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: #666666;
}

.header-right>div {
    position: relative;
    height: 80px;
    width: 100px;
}

.header-right>div>a {
    display: block;
    height: 80px;
    width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-right>div:hover >a {
    color: #ffffff;
    background: #1577F6;
}

.header-right>.header-search{
    width: 80px;
}

.header-right>.header-search>a{
    display: block;
	width: 80px;
	height: 80px;
    justify-content: center;
    align-items: center;
	background: url("/theme/default/images/search1.png") no-repeat center;
	background-size: 20px 20px;
}

.header-right>.header-search>a:hover{
	background: url("/theme/default/images/search2.png") no-repeat center;
	background-size: 20px 20px;
	background-color: #1577F6;
}

.header-right>.switch-item>a:hover {
    color: #ffffff;
    background: #1577F6;
}

.switch-item ul {
    position: absolute;
    width: 100px;
    background: #ffffff;
    top: 80px;
    left: 0;
    z-index: 100;
    font-size: 14px;
    color: #666666;
    text-align: center;
    padding: 20px 0 0;
	z-index: 100;
    display: none;
	box-shadow: 0px 3px 10px rgba(0,0,0,0.2);
}
.header-right .show-items li{
    margin-bottom: 20px;
}

.header-right>.switch-item>a:hover .switch-item ul{
    display: block !important;
}
.show-items a:hover{
color: #1577F6;
}
/* 
.show-items>li>a:hover .show-items{
    display: block;
}


.show-items li{
    margin-bottom: 20px;
    color: #666666;
}


.header-right>.switch-item:hover {
    background: #1577F6;
    color: #ffffff !important;
} */

.footer-wrap {
    height: 500px;
}